home *** CD-ROM | disk | FTP | other *** search
- (* GEMDOS.TYP *)
- (* Some constant and types we need in GEMDOS file, include this file
- under TYPE declaration before calling GEMDOS.PAS
- *)
-
- cstring = PACKED ARRAY[1..80] OF CHAR ;
- edit_str = STRING[81] ;
- word = INTEGER ; (* C convention *)
- long = Long_INTEGER ; (* C convention *)
- buf_type = PACKED ARRAY[1..80] OF CHAR ; (* define your own type ! *)
- DTA = PACKED RECORD
- reserved : PACKED ARRAY[0..20] OF BYTE ;
- attribute : BYTE ;
- time_stamp : WORD ;
- date_stamp : WORD ;
- file_size : LONG ;
- file_name : PACKED ARRAY[1..14] OF CHAR ;
- END ;
- drive_array = PACKED ARRAY[1..4] OF WORD ;
-
- (* END of GEMDOS.TYP *)
-